home *** CD-ROM | disk | FTP | other *** search
- head 1.1;
- access ;
- symbols ;
- locks ; strict;
- comment @@;
-
-
- 1.1
- date 88.03.24.19.48.55; author deboor; state Exp;
- branches ;
- next ;
-
-
- desc
- @Makefile to specify a shell that prints each command as executed, rather
- than as parsed.
- @
-
-
-
- 1.1
- log
- @Initial revision
- @
- text
- @#
- # This is a shell specification to have the bourne shell echo the commands
- # just before executing them, rather than when it reads them. Useful if you
- # want to see how variables are being expanded, etc.
- #
- .SHELL : path=/bin/sh \
- quiet="set -" \
- echo="set -x" \
- filter="+ set - " \
- echoFlag=x \
- errFlag=e \
- hasErrCtl=yes \
- check="set -e" \
- ignore="set +e"
- @
-